home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / BKISSSRC.ZIP / LOADER / GOLDPLAY.INC < prev    next >
Encoding:
Text File  |  1994-02-11  |  1.2 KB  |  43 lines

  1. ;─────────────────────────────────────────────────────────────────────────────
  2. ; The Externals
  3. ;─────────────────────────────────────────────────────────────────────────────
  4.  
  5.  
  6. SEGMENT _MODPLAY 'MODPLAYSEG'
  7. ;Procedures
  8.  
  9. EXTRN  INITIALIZE:FAR            ; Initializes the modplayer for given
  10.                                  ; sounddevice and replayrate
  11.  
  12. EXTRN  LOADMODULE:FAR            ; Loads the Module into memory
  13.  
  14. EXTRN  STARTPLAYING:FAR          ; Starts playing the module
  15.  
  16. EXTRN  STOPPLAYING:FAR           ; Stops playing the module
  17.  
  18. EXTRN  DEALLOC:FAR               ; Deallocates and erases the module
  19.                                  ; from memory
  20.  
  21. EXTRN  ASKINIT:FAR
  22.  
  23. ;Variables
  24.  
  25. EXTRN  SOUNDDEVICE:WORD          ; The Sounddevice number
  26.  
  27. EXTRN  TIMERSPEED:WORD           ; The replayrate 1193182/Hertz
  28.  
  29. EXTRN  SBDMA:WORD                ; SoundBlaster's DMA-Channel
  30.  
  31. EXTRN  SBIRQNR:WORD              ; SoundBlaster's IRQ-Number
  32.  
  33. EXTRN  SBPORT:WORD
  34.  
  35. ;Special_Variables
  36.  
  37. EXTRN  BAR1,BAR2,BAR3,BAR4:WORD  ; Selfdecrementing Bars, see the docs
  38.  
  39. EXTRN  SHOWPATTERNS:Word         ; Shows the patterns
  40.  
  41. EXTRN  MASTERVOLUME:Word         ; Mastervolume from 0 to 64
  42. ENDS    _MODPLAY
  43.